home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 12581 / 12581.xpi / components_src / Makefile.in < prev    next >
Makefile  |  2009-08-10  |  3KB  |  115 lines

  1. # ***** BEGIN LICENSE BLOCK *****
  2. # Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3. #
  4. # The contents of this file are subject to the Mozilla Public License Version
  5. # 1.1 (the "License"); you may not use this file except in compliance with
  6. # the License. You may obtain a copy of the License at
  7. # http://www.mozilla.org/MPL/
  8. #
  9. # Software distributed under the License is distributed on an "AS IS" basis,
  10. # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11. # for the specific language governing rights and limitations under the
  12. # License.
  13. #
  14. # The Original Code is the TrayToolkit
  15. #
  16. # The Initial Developer of the Original Code is
  17. # Nils Maier
  18. # Portions created by the Initial Developer are Copyright (C) 2008
  19. # the Initial Developer. All Rights Reserved.
  20. #
  21. # Contributor(s):
  22. #   Nils Maier <MaierMan@web.de>
  23. #
  24. # Alternatively, the contents of this file may be used under the terms of
  25. # either the GNU General Public License Version 2 or later (the "GPL"), or
  26. # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27. # in which case the provisions of the GPL or the LGPL are applicable instead
  28. # of those above. If you wish to allow use of your version of this file only
  29. # under the terms of either the GPL or the LGPL, and not to allow others to
  30. # use your version of this file under the terms of the MPL, indicate your
  31. # decision by deleting the provisions above and replace them with the notice
  32. # and other provisions required by the GPL or the LGPL. If you do not delete
  33. # the provisions above, a recipient may use your version of this file under
  34. # the terms of any one of the MPL, the GPL or the LGPL.
  35. #
  36. # ***** END LICENSE BLOCK *****
  37.  
  38. DEPTH        = ../../..
  39. topsrcdir    = @top_srcdir@
  40. srcdir        = @srcdir@
  41. VPATH        = @srcdir@
  42.     
  43. include $(DEPTH)/config/autoconf.mk
  44.     
  45. IS_COMPONENT = 1
  46. MODULE = mintrayr
  47. LIBRARY_NAME = trayToolkit
  48. XPIDL_MODULE = trayToolkit
  49.     
  50. XPI_NAME = mintrayr
  51.     
  52. EXPORTS = \
  53.         trayToolkit.h \
  54.         $(NULL)
  55.     
  56. XPIDLSRCS = \
  57.         trayIToolkit.idl \
  58.         $(NULL)
  59.  
  60. REQUIRES = \
  61.           xpcom_glue \
  62.           xpcom \
  63.           string \
  64.           gfx \
  65.           widget \
  66.           docshell \
  67.           appshell \
  68.           dom \
  69.           content \
  70.           layout \
  71.           $(NULL)
  72.  
  73. CPPSRCS = trayModule.cpp
  74.  
  75. # Platform specific stuff
  76. ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
  77. CPPSRCS += trayToolkitWin.cpp
  78. OS_LIBS += shell32.lib
  79. RCFILE = resources.rc
  80. RESFILE = resources.res
  81.  
  82. else
  83.  
  84. ifeq ($(MOZ_WIDGET_TOOLKIT),gtk2)
  85. CPPSRCS += trayToolkitGtk2.cpp
  86.  
  87. endif # gtk2
  88. endif # windows
  89.  
  90. USE_STATIC_LIBS = 1
  91. EXTRA_DSO_LDOPTS += \
  92.                     $(XPCOM_GLUE_LDOPTS) \
  93.                     $(NSPR_LIBS) \
  94.                        $(NULL)
  95.  
  96. EXTRA_SRC_COMPONENTS += \
  97.                 BUILD \
  98.                 Makefile.in \
  99.                 resources.rc \
  100.                 trayIToolkit.idl \
  101.                 trayModule.cpp \
  102.                 trayToolkit.h \
  103.                 trayToolkitWin.cpp \
  104.                 trayToolkitGtk2.cpp \
  105.                 $(NULL)
  106.                 
  107. libs:: $(EXTRA_SRC_COMPONENTS)
  108. ifndef NO_DIST_INSTALL
  109.     $(INSTALL) $(IFLAGS1) $^ $(FINAL_TARGET)/components_src
  110. endif
  111.  
  112. include $(topsrcdir)/config/rules.mk
  113.  
  114.